ComponentOne DateTimeEditors for WPF
C1.WPF.DateTimeEditors Namespace / NullablePropertyChangedEventArgs<T> Class
structure
Members

In This Topic
    NullablePropertyChangedEventArgs<T> Class
    In This Topic
    Wrapper class for the C1.WPF.Core.PropertyChangedEventArgs`1 class for case when T is Nullable.
    Object Model
    NullablePropertyChangedEventArgs<T> Class
    Syntax
    'Declaration
     
    
    Public Class NullablePropertyChangedEventArgs(Of T As {New, Struct}) 
       Inherits C1.WPF.Core.PropertyChangedEventArgs(Of Nullable(Of T))
    public class NullablePropertyChangedEventArgs<T> : C1.WPF.Core.PropertyChangedEventArgs<Nullable<T>> 
    where T: new(), struct
    Type Parameters
    T
    structure
    Remarks
    This class is required for design-time, as VS 2010 can't work with nested generic attributes directly when adding event handlers in xaml.
    Inheritance Hierarchy

    System.Object
       System.EventArgs
          C1.WPF.Core.PropertyChangedEventArgs<T>
             C1.WPF.DateTimeEditors.NullablePropertyChangedEventArgs<T>

    See Also